home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1995 December / Computer Life December 1995.iso / astound / ast30day.3 / ASTOUND / MCITMPL / WAVE.AMT < prev   
INI File  |  1995-03-15  |  811b  |  57 lines

  1. [MCITemplates]
  2. PlayNormal=Play
  3. PlayPos=Play From Position
  4. PlayTrans=Play During Transition
  5.  
  6. [Script PlayNormal Start]
  7.  
  8.     [Beginning]
  9.     open {DEVICE}{FILENAME} alias {ALIAS}
  10.  
  11.     [Entry]
  12.     play {ALIAS}
  13.  
  14.     [Exit]
  15.     stop {ALIAS}
  16.  
  17.     [Ending]
  18.     close {ALIAS}
  19.  
  20. [Script End]
  21.  
  22. [Script PlayPos Start]
  23.  
  24.     [Beginning]
  25.     open {DEVICE}{FILENAME} alias {ALIAS}
  26.     set {ALIAS} time format tmsf
  27.     seek {ALIAS} to {TIME}
  28.  
  29.     [Entry]
  30.     play {ALIAS}
  31.  
  32.     [Exit]
  33.     stop {ALIAS}
  34.  
  35.     [Ending]
  36.     close {ALIAS}
  37.  
  38. [Script End]
  39.  
  40. [Script PlayTrans Start]
  41.  
  42.     [Beginning]
  43.     open {DEVICE}{FILENAME} alias {ALIAS}
  44.     play {ALIAS}
  45.  
  46.     [Entry]
  47.     pause {ALIAS}
  48.  
  49.     [Exit]
  50.     play {ALIAS}
  51.  
  52.     [Ending]
  53.     stop {ALIAS}
  54.     close {ALIAS}
  55.  
  56. [Script End]
  57.